Conditions | 1 |
Total Lines | 18 |
Code Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import React from 'react'; |
||
16 | |||
17 | function App() { |
||
18 | return ( |
||
19 | <Router> |
||
20 | <div> |
||
21 | <HeaderMain/> |
||
22 | <div className="app_content"> |
||
23 | <Route exact path="/" component={Home}/> |
||
24 | <Route path="/reports/week/:kmom" component={Report}/> |
||
25 | <Route path="/register" component={Register}/> |
||
26 | <Route path="/login" component={Login}/> |
||
27 | <Route path="/chat" component={Chat}/> |
||
28 | <Route path="/reports/edit/:kmom" component={ReportEdit}/> |
||
29 | |||
30 | </div> |
||
31 | <Footer/> |
||
32 | </div> |
||
33 | </Router> |
||
34 | ); |
||
38 |